home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
mui37
/
mui
/
rexx
/
wbman.mrx
< prev
next >
Wrap
Text File
|
1996-07-13
|
314b
|
23 lines
/*
** This script shows how to obtain a list
** of an applications ARexx commands.
*/
options results
address 'WBMAN'
/* read the list into a temporary file */
'help t:_tmp'
/* type the file to stdout */
address command "type t:_tmp"
/* delete the temporary file */
address command "delete >nil: t:_tmp"